home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / ChipCD_1.03.iso / zkuste / delphi / kolekce / d3456 / GmPrintSuite_2_61_Lite.exe / {app} / GmRegister.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2002-10-05  |  1.5 KB  |  44 lines

  1. {******************************************************************************}
  2. {                                                                              }
  3. {                        GmRegister.pas v2.61 Pro                              }
  4. {                                                                              }
  5. {           Copyright (c) 2001 Graham Murt  - www.MurtSoft.co.uk               }
  6. {                                                                              }
  7. {   Feel free to e-mail me with any comments, suggestions, bugs or help at:    }
  8. {                                                                              }
  9. {                           graham@murtsoft.co.uk                              }
  10. {                                                                              }
  11. {******************************************************************************}
  12.  
  13. unit GmRegister;
  14.  
  15. interface
  16.  
  17. uses Classes,
  18.      GmPreview,
  19.      GmRtfPreview,
  20.      GmGridPrint,
  21.      GmThumbnails,
  22.      GmMultiPageImage,
  23.      GmOrientationImage,
  24.      GmPrinterList;
  25.  
  26. procedure Register;
  27.  
  28. implementation
  29.  
  30.  
  31.  
  32. procedure Register;
  33. begin
  34.   RegisterComponents('GmPrintSuite', [TGmPreview]);
  35.   RegisterComponents('GmPrintSuite', [TGmRtfPreview]);
  36.   RegisterComponents('GmPrintSuite', [TGmGridPrint]);
  37.   RegisterComponents('GmPrintSuite', [TGmThumbnails]);
  38.   RegisterComponents('GmPrintSuite', [TGmMultiPageImage]);
  39.   RegisterComponents('GmPrintSuite', [TGmOrientationImage]);
  40.   RegisterComponents('GmPrintSuite', [TGmPrinterList]);
  41. end;
  42.  
  43. end.
  44.